home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / shaw / vbits32 / newdialo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-13  |  786 b   |  36 lines

  1. // newdialo.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CNewDialog dialog
  6.  
  7. class CNewDialog : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CNewDialog(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CNewDialog)
  15.     enum { IDD = IDD_NewDialog };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CNewDialog)
  23.     protected:
  24.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.  
  30.     // Generated message map functions
  31.     //{{AFX_MSG(CNewDialog)
  32.     afx_msg void OnSayHello();
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.